home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 2
/
Merciful - Disc 2.iso
/
software
/
s
/
superviewv2.10crackreg.lha
/
SuperView
/
ARexx-Scripts
/
ConvertFile.rx
next >
Wrap
Text File
|
1995-10-14
|
783b
|
40 lines
/*
$VER: ConvertFile.rx V4.53 (1.4.95)
© 1993-95 by Andreas R. Kleinert
This script demonstrates loading, saving (converting) and
displaying files by using SuperView's ARexxPort.
*/
address command
SuperView "-INSTALL_APPMENU=FALSE -INSTALL_APPICON=FALSE"
say ""
say "ARexx : SuperView has been started : Waiting three seconds ..."
wait 3
say "ARexx : Loading a GIF Graphics via the LOAD command"
address 'SuperView.rx' "LOAD=/Bonus/SuperView.GIF"
say "ARexx : Saving Graphics as BMP V3.00"
address 'SuperView.rx' "SAVE_TYPE=BMP V3.00"
address 'SuperView.rx' "SAVE=SuperView.bmp"
wait 3
say "ARexx : Load this BMP Gfx now for control"
address 'SuperView.rx' "SHOW=SuperView.bmp"
say "ARexx : O.K. : Let's quit !"
Wait 2
address 'SuperView.rx' "QUIT"
exit